home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiniExamples / IndexingKit / RecordManager / DataRecord.h < prev    next >
Text File  |  1995-06-12  |  258b  |  18 lines

  1. #import <appkit/appkit.h>
  2.  
  3. #define DRASTRINGNAME    "aString"
  4. #define DRANINTNAME    "anInt"
  5.  
  6. @interface DataRecord:Object
  7. {
  8.     char    *aString;
  9.     int        anInt;
  10. }
  11.  
  12. - setAString:(const char *)str;
  13. - (const char *)aString;
  14. - setAnInt:(int)number;
  15. - (int)anInt;
  16.  
  17. @end
  18.